projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
32f2ab4
)
* lisp/svg.el (svg--encode-text): Fix off-by-one error in previous patch.
author
Lars Ingebrigtsen
<larsi@gnus.org>
Wed, 18 Oct 2017 22:36:44 +0000
(
00:36
+0200)
committer
Lars Ingebrigtsen
<larsi@gnus.org>
Wed, 18 Oct 2017 22:36:44 +0000
(
00:36
+0200)
lisp/svg.el
patch
|
blob
|
history
diff --git
a/lisp/svg.el
b/lisp/svg.el
index 241385fa91ff6b3be52e3d4d1da7f0769e8d82b5..42619ed35195dfdbaf5cc61e65800dc206a5d1ff 100644
(file)
--- a/
lisp/svg.el
+++ b/
lisp/svg.el
@@
-167,7
+167,7
@@
otherwise. IMAGE-TYPE should be a MIME image type, like
(goto-char (point-min))
(while (not (eobp))
(let ((char (following-char)))
- (if (<
=
char 128)
+ (if (< char 128)
(forward-char 1)
(delete-char 1)
(insert "&#" (format "%d" char) ";"))))